@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');

body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
}

.main {
  height: 100vh;
  text-align: center;
  border: 10px solid #333;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  background: linear-gradient(25deg, #fff 25%, #f9f9f9 75%);
  overflow: hidden;
}

.main:before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  min-width: 100vw;
  min-height: 100vh;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: .6;
  background-image: url('../img/element1.png');
}

.main .content-area {
  position: relative;
  z-index: 1;
}

.main .content-area h2 {
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: #333;
  font-weight: 600;

}

.main .content-area a.mail {
  color: #333;
  font-size: 15px;
  padding: 3px 0;
  border-bottom: 1px solid #E8273C;
  transition: .4s;
 }

.main .content-area a.mail i {
  margin-right: 10px;
}


.main .content-area a.mail:hover {
  text-decoration: none;
  color: #E8273C;
}

.content-area .social-list ul {
  margin: 0;
  padding: 0;
  margin-top: 20px;
}

.content-area .social-list ul  li{
  list-style-type: none;
  display: inline-block;
}

.content-area .social-list ul li a {
  display: block;
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  background: #000000;
  color: white;
  border-radius: 50%;
  transition: .4s;
  text-decoration: none;
}

.content-area .social-list ul li a:hover {
  background-color: #E8273C;
}
